home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / oath.lha / oath / src / localToken.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-29  |  1.4 KB  |  43 lines

  1. //***************************************************************************
  2. //             OATH :: Tokenect-oriented Abstract Type Hierarchy
  3. //***************************************************************************
  4. //
  5. //  Copyright (C) 1991, 1990  Texas Instruments Incorporated
  6. //  Permission is granted to any individual or institution
  7. //  to use, copy, modify, and distribute this software,
  8. //  provided that this complete copyright and permission notice
  9. //  is maintained, intact, in all copies and supporting documentation.
  10. //
  11. //  Texas Instruments Incorporated provides this software "as is"
  12. //  without express or implied warranty.
  13. //
  14. //***************************************************************************
  15. //  localToken (localTokenA, localTokenG)
  16. //
  17. //  History:
  18. //    07/91  Brian M Kennedy  Original -- separated from token
  19. //
  20. //***************************************************************************
  21.  
  22. #include "copyright.h"
  23.  
  24. #include <oath/localToken.h>
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // localToken Outline Definitions
  28.  
  29. OUTLINES(localToken, token)
  30.  
  31. // oathCore Operations //////////
  32.  
  33.     void localTokenG::
  34. export (exportP& X) const
  35.    {X.writeType(TypeName);}
  36.  
  37.     objA localTokenG::
  38. import (importP&)
  39.    {return localTokenA::make();}
  40.  
  41.  
  42. //***************************************************************************
  43.